home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Reference Guide
/
C-C++ Interactive Reference Guide.iso
/
c_ref
/
csource5
/
311_01
/
dblib.h
< prev
next >
Wrap
C/C++ Source or Header
|
1990-04-23
|
2KB
|
67 lines
/****************************************************************************/
/* */
/* */
/* dblib.h v1.3 (c) 1990 Ken Harris */
/* */
/* */
/****************************************************************************/
/* */
/* This software is made available on an AS-IS basis. Unrestricted */
/* use is granted provided that the copyright notice remains intact. */
/* The author makes no warranties expressed or implied. */
/* */
/****************************************************************************/
/*
* This file contains header information for building the DB library
* routines. It does not need to be included in applications. It defines
* the right set of include files for each configuration.
*/
#include <stdio.h>
/*
* Microsoft C V5.10
*/
#ifdef MSC
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <ctype.h>
#endif
/*
* Turbo C V2.0
*/
#ifdef TURBO
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <ctype.h>
#endif
/*
* DEC Ultrix gcc V1.36
*/
#ifdef ULTRIX
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <ctype.h>
#endif
/*
* SYSV - 3b1 rel 3
*/
#ifdef SYSV
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <ctype.h>
#endif
#include "db.h"
void *memcpy();